![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
eslint-plugin-deprecation
Advanced tools
The eslint-plugin-deprecation package is an ESLint plugin that helps developers identify and manage deprecated code in their JavaScript projects. It allows you to mark certain functions, methods, or properties as deprecated and provides warnings or errors when they are used.
Detect Deprecated Functions
This feature allows you to specify deprecated functions and provide a custom message. When the deprecated function is used, ESLint will warn the developer.
module.exports = {
rules: {
'deprecation/deprecation': [
'warn',
{
'methods': {
'myDeprecatedFunction': 'This function is deprecated. Use newFunction instead.'
}
}
]
}
};
Detect Deprecated Properties
This feature allows you to mark object properties as deprecated. When the deprecated property is accessed, ESLint will issue a warning.
module.exports = {
rules: {
'deprecation/deprecation': [
'warn',
{
'properties': {
'myObject.oldProperty': 'This property is deprecated. Use newProperty instead.'
}
}
]
}
};
Custom Deprecation Messages
This feature allows you to provide custom deprecation messages for both methods and properties, giving developers clear guidance on what to use instead.
module.exports = {
rules: {
'deprecation/deprecation': [
'warn',
{
'methods': {
'oldFunction': 'oldFunction is deprecated. Please use newFunction.'
},
'properties': {
'oldProperty': 'oldProperty is deprecated. Please use newProperty.'
}
}
]
}
};
eslint-plugin-deprecate is an ESLint plugin that allows you to mark functions, methods, and properties as deprecated. It provides warnings when deprecated code is used. This package is similar to eslint-plugin-deprecation but may have different syntax and configuration options.
An ESLint rule that reports usage of deprecated code.
If you already use TypeScript and one or more rules from the typescript-eslint
plugin, then eslint-plugin-deprecation
will work out of the box without any additional dependencies or special configuration specified in this section. (This is because @typescript-eslint/plugin
automatically contains @typescript-eslint/parser
and your ESLint should already be configured with the parserOptions
to work properly with TypeScript.)
Otherwise, in order for you to use this plugin, you must also install the following dependencies:
typescript
@typescript-eslint/parser
For example, if you use the npm
package manager, then you would run the following command in the root of your project:
npm install --save-dev typescript @typescript-eslint/parser
Next, you must configure ESLint to parse TypeScript and include type information:
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.json" // <-- Point to your project's "tsconfig.json" or create a new one.
}
}
For example, if you use the npm
package manager, then you would run the following command in the root of your project:
npm install --save-dev eslint-plugin-deprecation
recommended
ConfigThe easiest way to use this plugin is to extend from the recommended
config, like this:
{
"extends": [
"plugin:deprecation/recommended",
],
}
The recommended
config will enable the plugin and enable the deprecation/deprecation
rule with a value of error
.
If you don't want to use the recommended
config for some reason, you can accomplish the same thing by specifying the following config:
{
"plugins": [
"deprecation",
],
"rules": {
"deprecation/deprecation": "error",
},
}
This rule was originally ported from the SonarJS repository.
FAQs
ESLint rule that reports usage of deprecated code
The npm package eslint-plugin-deprecation receives a total of 718,722 weekly downloads. As such, eslint-plugin-deprecation popularity was classified as popular.
We found that eslint-plugin-deprecation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.